home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / CDTools / GoFetch! / arexx / StandardScripts / StopGoFetch.miami < prev   
Text File  |  1999-11-03  |  362b  |  19 lines

  1. /*
  2. ** GoFetch Arexx Script
  3. ** Written by Ian Chapman/Marc Bradshaw
  4. ** for Zeus Developments
  5. **
  6. ** V1.0 29.10.99
  7. **
  8. ** This script can be used with MiamiDX to automatically
  9. ** stop and quit Go Fetch! when you go offline.
  10. */
  11.  
  12. PortName = 'GOFETCH'
  13.  
  14. If Show('p','GOFETCH') Then Do
  15.     Interpret 'Address 'PortName' stop'
  16.     Interpret 'Address 'PortName' quit'
  17. End
  18.  
  19.